1
partial class LoginForm
4 /// Required designer variable.
6 private System
.ComponentModel
.IContainer components
= null;
9 /// Clean up any resources being used.
11 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12 protected override void Dispose(bool disposing
)
14 if (disposing
&& (components
!= null))
18 base.Dispose(disposing
);
21 #region Windows Form Designer generated code
23 internal System
.Windows
.Forms
.Label lbUserName
;
24 internal System
.Windows
.Forms
.Label lbPassword
;
25 internal System
.Windows
.Forms
.TextBox tbUserName
;
26 internal System
.Windows
.Forms
.TextBox tbPassword
;
27 internal System
.Windows
.Forms
.Button btnOK
;
28 internal System
.Windows
.Forms
.Button btnCancel
;
30 //NOTE: The following procedure is required by the Windows Form Designer
31 //It can be modified using the Windows Form Designer.
32 //Do not modify it using the code editor.
33 [System
.Diagnostics
.DebuggerStepThrough()]
34 private void InitializeComponent()
36 this.lbUserName
= new System
.Windows
.Forms
.Label();
37 this.lbPassword
= new System
.Windows
.Forms
.Label();
38 this.tbUserName
= new System
.Windows
.Forms
.TextBox();
39 this.tbPassword
= new System
.Windows
.Forms
.TextBox();
40 this.btnOK
= new System
.Windows
.Forms
.Button();
41 this.btnCancel
= new System
.Windows
.Forms
.Button();
46 this.lbUserName
.Location
= new System
.Drawing
.Point(10, 17);
47 this.lbUserName
.Name
= "UsernameLabel";
48 this.lbUserName
.Size
= new System
.Drawing
.Size(220, 23);
49 this.lbUserName
.TabIndex
= 0;
50 this.lbUserName
.Text
= "&User name";
51 this.lbUserName
.TextAlign
= System
.Drawing
.ContentAlignment
.MiddleLeft
;
55 this.lbPassword
.Location
= new System
.Drawing
.Point(10, 74);
56 this.lbPassword
.Name
= "PasswordLabel";
57 this.lbPassword
.Size
= new System
.Drawing
.Size(220, 23);
58 this.lbPassword
.TabIndex
= 2;
59 this.lbPassword
.Text
= "&Password";
60 this.lbPassword
.TextAlign
= System
.Drawing
.ContentAlignment
.MiddleLeft
;
64 this.tbUserName
.Location
= new System
.Drawing
.Point(12, 37);
65 this.tbUserName
.Name
= "tbxUsername";
66 this.tbUserName
.Size
= new System
.Drawing
.Size(220, 20);
67 this.tbUserName
.TabIndex
= 1;
71 this.tbPassword
.Location
= new System
.Drawing
.Point(12, 94);
72 this.tbPassword
.Name
= "tbxPassword";
73 this.tbPassword
.PasswordChar
= '*';
74 this.tbPassword
.Size
= new System
.Drawing
.Size(220, 20);
75 this.tbPassword
.TabIndex
= 3;
79 this.btnOK
.Location
= new System
.Drawing
.Point(35, 154);
80 this.btnOK
.Name
= "btnOK";
81 this.btnOK
.Size
= new System
.Drawing
.Size(94, 23);
82 this.btnOK
.TabIndex
= 4;
83 this.btnOK
.Text
= "&OK";
84 this.btnOK
.Click
+= new System
.EventHandler(this.OK_Click
);
88 this.btnCancel
.DialogResult
= System
.Windows
.Forms
.DialogResult
.Cancel
;
89 this.btnCancel
.Location
= new System
.Drawing
.Point(138, 154);
90 this.btnCancel
.Name
= "btnCancel";
91 this.btnCancel
.Size
= new System
.Drawing
.Size(94, 23);
92 this.btnCancel
.TabIndex
= 5;
93 this.btnCancel
.Text
= "&Cancel";
94 this.btnCancel
.Click
+= new System
.EventHandler(this.Cancel_Click
);
98 this.AcceptButton
= this.btnOK
;
99 this.AutoScaleDimensions
= new System
.Drawing
.SizeF(6F
, 13F
);
100 this.AutoScaleMode
= System
.Windows
.Forms
.AutoScaleMode
.Font
;
101 this.CancelButton
= this.btnCancel
;
102 this.ClientSize
= new System
.Drawing
.Size(248, 192);
103 this.Controls
.Add(this.btnCancel
);
104 this.Controls
.Add(this.btnOK
);
105 this.Controls
.Add(this.tbPassword
);
106 this.Controls
.Add(this.tbUserName
);
107 this.Controls
.Add(this.lbPassword
);
108 this.Controls
.Add(this.lbUserName
);
109 this.FormBorderStyle
= System
.Windows
.Forms
.FormBorderStyle
.FixedDialog
;
110 this.MaximizeBox
= false;
111 this.MinimizeBox
= false;
112 this.Name
= "LoginForm";
113 this.SizeGripStyle
= System
.Windows
.Forms
.SizeGripStyle
.Hide
;
114 this.StartPosition
= System
.Windows
.Forms
.FormStartPosition
.CenterParent
;
115 this.Text
= "LoginForm";
116 this.ResumeLayout(false);
117 this.PerformLayout();